populate array from an XML file

81

populate array from an XML file -

string[] MyArray = XDocument.Parse(xml).XPathSelectElements("//a").Select(e => e.Attributes("href").FirstOrDefault().Value).ToArray()`

Comments

Submit
0 Comments